Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 100 % |
Changes | 0 |
Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
1 | View Code Duplication | import { addColumnAfter } from 'prosemirror-tables'; |
|
6 | export default class TColumnAddAfterMenuItemDispatcher extends AbstractMenuItemDispatcher { |
||
7 | static isAvailable(schema) { |
||
8 | return !!schema.nodes.table; |
||
9 | } |
||
10 | |||
11 | static getMenuItem(schema) { |
||
12 | if (!this.isAvailable(schema)) { |
||
13 | throw new Error('Table not available in schema!'); |
||
14 | } |
||
15 | |||
16 | return new MenuItem({ |
||
17 | command: addColumnAfter, |
||
18 | icon: svgIcon('table-column-plus-after'), |
||
19 | label: LANG.plugins.prosemirror['label:table-add-column-after'], |
||
20 | }); |
||
21 | } |
||
22 | } |
||
23 |